home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Form / Sources / PartInfo.fr < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.8 KB  |  86 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                PartInfo.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef FWPART_FR
  15. #include "FWPart.fr"
  16. #endif
  17.  
  18. #ifndef DEFINES_K
  19. #include "Defines.k"
  20. #endif
  21.  
  22. #ifndef BINDING_K
  23. #include "Binding.k"
  24. #endif
  25.  
  26. #ifndef SLGCONST_K
  27. #include "SLGConst.k" 
  28. #endif
  29.  
  30. #ifndef FWVIEWS_FR
  31. #include "FWViews.fr"
  32. #endif
  33.  
  34. //----------------------------------------------------------------------------------------
  35. //    PartInfo Resource
  36. //----------------------------------------------------------------------------------------
  37.  
  38. resource FW_RPartInfo(kPartInfoID)
  39. {
  40.     // ----- Icon ID
  41.     kViewAsIconID,
  42.     
  43.     // ----- Part Name
  44.     kODFFormEditorUserString,
  45.     
  46.     // ----- PartKind
  47.     kODFFormKind
  48. };
  49.  
  50. //----------------------------------------------------------------------------------------
  51. //    About Resource
  52. //----------------------------------------------------------------------------------------
  53.  
  54. resource FW_RAbout(kAbout)
  55. {
  56.     // ----- Icon ID
  57.     kAboutIconID,
  58.     // ----- Part Name
  59.     FW_RStyledText
  60.     (
  61.         FW_FIX(18), 
  62.         FW_kBold, 
  63.         "times", 
  64.         "ODFForm"
  65.     ),
  66.     // ----- Version Number
  67.     FW_RStyledText
  68.     (
  69.         FW_FIX(9),
  70.         FW_kPlain,
  71.         "geneva",
  72.         "ODF Release 1"
  73.     ),
  74.     // ----- Credits
  75.     FW_RStyledText
  76.     (
  77.         FW_FIX(9),
  78.         FW_kPlain,
  79.         "geneva",
  80.         "ODFForm demonstrates the ODF View System. It shows how to use various Views, "
  81.         "Controls, and Dialog classes, and how to respond to their notifications."
  82.         "It contains an example of a scrolling edit-field with Undo/Redo support. "
  83.         "It also demonstrates the use of 'behaviors' to customize event handling.\r\r"
  84.         "Written by the ODF Team.\r"
  85.     )
  86. };